home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS09.ADF / MyCLI / makecli.cli < prev    next >
Text File  |  1986-05-22  |  481b  |  24 lines

  1. ;
  2. ;script file to build MYCLI under MANX C
  3. ;
  4. ;  copy c.lib to ram: if not there
  5. ;
  6. ;  compile with -s option to supress pointer warning messages
  7. ;               -a option so we can assemble with other options
  8. ;
  9. cc -aso ram:mycli.asm mycli
  10. ;
  11. ;  assemble with -s option to make squeeze table bigger
  12. ;                    program will crash if this isn't done
  13. ;
  14. as -s1900 -o mycli.o ram:mycli.asm
  15. ;
  16. ;  kill ram: file
  17. ;
  18. delete ram:mycli.asm
  19. ;
  20. ;  link normally
  21. ;
  22. ln -o mycli mycli.o -lc
  23.  
  24.